home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / lotus / lotus025.dsk / MODFRAME.LSS < prev    next >
Text File  |  1995-06-26  |  749b  |  25 lines

  1.     Print "Number of columns = " .Frame.Layout.NumCols
  2.     
  3.     ' Set the layout for this frame to 2 columns
  4.     .Frame.Layout.NumCols = 2
  5.     
  6.     ' turn painting off    
  7.     .BeginChange    
  8.     
  9.     ' set the backcolor for this frame    
  10.     .Frame.Layout.Background.BackColor.Red = 0
  11.     .Frame.Layout.Background.BackColor.Blue = 224
  12.     .Frame.Layout.Background.BackColor.Green = 224
  13.     .Frame.Layout.Background.BackColor.Override = 0
  14.     
  15.     ' set the pattern color for this pattern    
  16.     .Frame.Layout.Background.Color.Red = 255
  17.     .Frame.Layout.Background.Color.Blue = 194
  18.     .Frame.Layout.Background.Color.Green = 255
  19.     .Frame.Layout.Background.Color.Override = 0
  20.     
  21.     ' assign a nice pattern to this frame    
  22.     .Frame.Layout.Background.Pattern = $LtsFillNeToSwGrad
  23.     
  24.     
  25.     .EndChange